runtime.m.gsignal (field)
38 uses
runtime (current package)
arena.go#L477: if mp.gsignal == getg() {
arena.go#L755: if mp.gsignal == getg() {
cgocheck.go#L42: if gp == gp.m.g0 || gp == gp.m.gsignal {
debug.go#L100: if gp == gp.m.g0 || gp == gp.m.gsignal {
debug.go#L119: if gp == gp.m.g0 || gp == gp.m.gsignal {
malloc.go#L1105: if mp.gsignal == getg() {
malloc.go#L1261: if mp.gsignal == getg() {
malloc.go#L1347: if mp.gsignal == getg() {
malloc.go#L1438: if mp.gsignal == getg() {
malloc.go#L1531: if mp.gsignal == getg() {
malloc.go#L1823: if gp := getg(); gp == gp.m.gsignal {
os_linux.go#L390: mp.gsignal = malg(32 * 1024) // Linux wants >= 2K
os_linux.go#L391: mp.gsignal.m = mp
proc.go#L961: if mp.gsignal != nil {
proc.go#L962: mp.gsignal.stackguard1 = mp.gsignal.stack.lo + stackGuard
proc.go#L1939: if mp.gsignal != nil {
proc.go#L1940: stackfree(mp.gsignal.stack)
proc.go#L1945: mp.gsignal = nil
proc.go#L4411: if gp == gp.m.g0 || gp == gp.m.gsignal {
runtime2.go#L536: gsignal *g // signal-handling g
signal_unix.go#L476: setg(gp.m.gsignal)
signal_unix.go#L482: gp.m.gsignal.stktopsp = sys.GetCallerSP()
signal_unix.go#L557: if sp >= mp.gsignal.stack.lo && sp < mp.gsignal.stack.hi {
signal_unix.go#L1114: print("mp.gsignal stack [", hex(mp.gsignal.stack.lo), " ", hex(mp.gsignal.stack.hi), "], ")
signal_unix.go#L1332: signalstack(&mp.gsignal.stack)
signal_unix.go#L1420: old.stack = gp.m.gsignal.stack
signal_unix.go#L1421: old.stackguard0 = gp.m.gsignal.stackguard0
signal_unix.go#L1422: old.stackguard1 = gp.m.gsignal.stackguard1
signal_unix.go#L1423: old.stktopsp = gp.m.gsignal.stktopsp
signal_unix.go#L1426: gp.m.gsignal.stack.lo = stsp
signal_unix.go#L1427: gp.m.gsignal.stack.hi = stsp + st.ss_size
signal_unix.go#L1428: gp.m.gsignal.stackguard0 = stsp + stackGuard
signal_unix.go#L1429: gp.m.gsignal.stackguard1 = stsp + stackGuard
signal_unix.go#L1438: gp := getg().m.gsignal
stack.go#L973: print("runtime: newstack called from g=", hex(thisg.m.morebuf.g), "\n"+"\tm=", thisg.m, " m->curg=", thisg.m.curg, " m->g0=", thisg.m.g0, " m->gsignal=", thisg.m.gsignal, "\n")